-- card: 2523 from stack: in -- bmap block id: 0 -- flags: 0000 -- background id: 6329 -- name: -- part 1 (field) -- low flags: 01 -- high flags: 0000 -- rect: left=14 top=39 right=315 bottom=498 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 0 -- font id: 5 -- text size: 14 -- style flags: 0 -- line height: 18 -- part name: text -- part contents for card part 1 ----- text ----- Some notes on Fractal2 & Fractal3: Fractal2 was an attempt to see if more speed could be realized by calling the MC68881 FPU directly on the MAC II. It does make a difference. Roughly a 60% speed increase over the SANE version. The drawback is that it does not run on a "Classic" Macintosh. But I thought there was still more room for improvement. Fractal and Fractal2 both called quickdraw for each calculated point. At res=1 that is 512 calls per line. I changed the method to save a line of bits and draw it once. That decreased the time by about 50%. The trade-off is that Fractal3 will only operate in res=1 mode. Use Fractal2 for larger than res=1, where the time is not a problem. Then use Fractal3 for res=1. Ray Sanders (Thanks to Doug Felt for the original idea)